Changeset 5f8660a


Ignore:
Timestamp:
Aug 17, 2010, 1:19:54 PM (15 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
293afd
Parents:
bcf653
git-author:
Frederik Heber <heber@…> (08/17/10 13:17:22)
git-committer:
Frederik Heber <heber@…> (08/17/10 13:19:54)
Message:

Changed PACKAGENAME and version.

  • rename ESPACKVersion in src/version.h -> MOLECUILDERVERSION
  • changed PACKAGENAME to MoleCuilder
  • FIX: changed version number in configure.ac to 1.0.0
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified configure.ac

    rbcf653 r5f8660a  
    33
    44AC_PREREQ(2.59)
    5 AC_INIT(Molecuilder, 1.0, heber@ins.uni-bonn.de, molecuilder)
     5AC_INIT(MoleCuilder, 1.0.0, heber@ins.uni-bonn.de, molecuilder)
    66AC_CONFIG_AUX_DIR(config)
    77AC_CONFIG_SRCDIR([src/builder.cpp])
  • TabularUnified src/Actions/CmdAction/VersionAction.cpp

    rbcf653 r5f8660a  
    4949  ASSERT(dialog,"No Dialog given when filling action dialog");
    5050
    51   dialog->queryEmpty(NAME, ESPACKVersion);
     51  dialog->queryEmpty(NAME, MOLECUILDERVERSION);
    5252
    5353  return dialog;
  • TabularUnified src/Makefile.am

    rbcf653 r5f8660a  
    375375
    376376$(srcdir)/version.c: $(srcdir)/.git-version
    377         echo "const char *ESPACKVersion = \"$(PACKAGE_NAME) -- git version: "`cat $(srcdir)/.git-version`"\";" > $@
     377        echo "const char *MOLECUILDERVERSION = \"$(PACKAGE_NAME) version "`cat $(srcdir)/.git-version`"\";" > $@
    378378
    379379
  • TabularUnified src/UIElements/QT4/QTUIFactory.cpp

    rbcf653 r5f8660a  
    4141  argv = new char*[1];
    4242  argv[0] = new char[256];
    43   strcpy(argv[0],ESPACKVersion);
     43  strcpy(argv[0],MOLECUILDERVERSION);
    4444  app = new QApplication(argc,argv);
    4545}
  • TabularUnified src/builder.cpp

    rbcf653 r5f8660a  
    161161
    162162  // print version check and copyright notice
    163   cout << ESPACKVersion << endl;
     163  cout << MOLECUILDERVERSION << endl;
    164164  cout << "MoleCuilder comes with ABSOLUTELY NO WARRANTY; for details type" << endl;
    165165  cout << "`" << argv[0] << " --help-warranty'." << endl;
     
    204204      #else
    205205        DoLog(0) && (Log() << Verbose(0) << "Setting UI to Text." << endl);
    206         cout << ESPACKVersion << endl;
     206        cout << MOLECUILDERVERSION << endl;
    207207        UIFactory::registerFactory(new TextUIFactory::description());
    208208        UIFactory::makeUserInterface("Text");
  • TabularUnified src/version.h

    rbcf653 r5f8660a  
    22#define VERSION_H_
    33
    4 extern const char *ESPACKVersion;
     4extern const char *MOLECUILDERVERSION;
    55
    66#endif /* VERSION_H_ */
Note: See TracChangeset for help on using the changeset viewer.